home *** CD-ROM | disk | FTP | other *** search
- /*
- Visual FX
- For
- Image FX
- SetUp Script
- Written By J.L. White
-
- (C)1997 Merlin's Software
-
- */
- parse arg Num
- options results
- address "IMAGEFX.1"
-
-
-
- Gadget.1 = 'Select Mode To Fade With!'
- Gadget.2 = 'Emboss'
- Gadget.3 = 'SobelEdge'
- Gadget.4 = 'Grey Scale'
- Gadget.5 = 'Negative'
- Gadget.6 = 'Neon Art'
- Gadget.7 = 'Antique'
- Gadget.8 = 'Apply Texture'
- Gadget.9 = 'Contrast & Gamma'
- Gadget.10 = 'Contrast'
- Gadget.11 = 'Gamma'
- ListRequest 11 Gadget
- Type = 2
- if result = 2 then Type = 0
- if result = 3 then Type = 1
- if result = 4 then Type = 2
- if result = 5 then Type = 3
- if result = 6 then Type = 4
- if result = 7 then Type = 5
- if result = 8 then Type = 6
- if result = 9 then Type = 7
- if result = 10 then Type = 8
- if result = 11 then Type = 9
-
- Texture = ""
- if Type = 6 then do
- RequestFile '"Select File To Use For Texture!" "IMAGEFX:Textures" ""'
- Texture = result
-
- end
-
- call open TempFile,"VFXIFX:TempDrawer/"strip(Num),W
- call writeln TempFile,Type
- call writeln TempFile,Texture
- call close TempFile
-